Goto

Collaborating Authors

 tensorflow hub


TensorFlow HUB, easy implementation of pre-trained models.

#artificialintelligence

The TensorFlow Hub lets you search and discover hundreds of trained, ready-to-deploy machine-learning models in one place. Before we get straight to the code, I suggest you read my blog post about…


TensorFlow Hub: Deep Learning, Computer Vision and NLP

#artificialintelligence

Deep Learning is the application of artificial neural networks to solve complex problems and commercial problems. There are several practical applications that have already been built using these techniques, such as: self-driving cars, development of new medicines, diagnosis of diseases, automatic generation of news, facial recognition, product recommendation, forecast of stock prices, and many others! The technique used to solve these problems is artificial neural networks, which aims to simulate how the human brain works. They are considered to be the most advanced techniques in the Machine Learning area. One of the most used libraries to implement this type of application is Google TensorFlow, which supports advanced architectures of artificial neural networks.


Transfer learning for TensorFlow image classification models in Amazon SageMaker

#artificialintelligence

Amazon SageMaker provides a suite of built-in algorithms, pre-trained models, and pre-built solution templates to help data scientists and machine learning (ML) practitioners get started on training and deploying ML models quickly. You can use these algorithms and models for both supervised and unsupervised learning. They can process various types of input data, including tabular, image, and text. Starting today, SageMaker provides a new built-in algorithm for image classification: Image Classification – TensorFlow. It is a supervised learning algorithm that supports transfer learning for many pre-trained models available in TensorFlow Hub.


Machine Learning Day on Google Open Source Live, Thu, Aug 4, 2022, 9:00 AM

#artificialintelligence

Thu, Aug 4, 9:00 AM PDT: Join us for the twenty-second Google Open Source Live event in our series; “Machine Learning Day”! Google Machine Learning experts will share updates on everything from To


Text Classification with Movie Reviews

#artificialintelligence

This notebook classifies movie reviews as positive or negative using the text of the review. This is an example of binary--or two-class--classification, an important and widely applicable kind of machine learning problem. We'll use the IMDB dataset that contains the text of 50,000 movie reviews from the Internet Movie Database. These are split into 25,000 reviews for training and 25,000 reviews for testing. The training and testing sets are balanced, meaning they contain an equal number of positive and negative reviews.


Transfer Learning for NLP with TensorFlow Hub

#artificialintelligence

This is a hands-on project on transfer learning for natural language processing with TensorFlow and TF Hub. By the time you complete this project, you will be able to use pre-trained NLP text embedding models from TensorFlow Hub, perform transfer learning to fine-tune models on real-world data, build and evaluate multiple models for text classification with TensorFlow, and visualize model performance metrics with Tensorboard. In order to successfully complete this project, you should be competent in the Python programming language, be familiar with deep learning for Natural Language Processing (NLP), and have trained models with TensorFlow or and its Keras API. Note: This course works best for learners who are based in the North America region.


Introduction to NLP with Disaster Tweets

#artificialintelligence

Natural Language Processing, also known as NLP, is a subfield of computer science, specifically artificial intelligence, that focuses on understanding written and spoken text. It covers various tasks some of which are speech recognition, sentiment analysis and language generation; And, it has been applied in several use cases such as machine translation, spam detection, virtual assistants and chatbots. The project covered in this article is a sentiment analysis project called Natural Language Processing with Disaster Tweets. Sentiment analysis is the process to extract subjective qualities from text such as emotion or attitude. The objective of the project is to identify if a specific tweet is a real disaster or not. The project is ideal for beginners in NLP.


The Best Machine Learning Frameworks & Extensions for TensorFlow - KDnuggets

#artificialintelligence

TensorFlow has a large ecosystem of libraries and extensions. If you're a developer, you can easily add them into your ML work without having to build new functions. In this article, we will explore some of the TensorFlow extensions that you can start using right away. To start, let's check out domain-specific pre-trained models from TensorFlow Hub. TensorFlow Hub is a repository with hundreds of trained and ready-to-use models.


Classify text with BERT

#artificialintelligence

This tutorial contains complete code to fine-tune BERT to perform sentiment analysis on a dataset of plain-text IMDB movie reviews. In addition to training a model, you will learn how to preprocess text into an appropriate format. If you're new to working with the IMDB dataset, please see Basic text classification for more details. BERT and other Transformer encoder architectures have been wildly successful on a variety of tasks in NLP (natural language processing). They compute vector-space representations of natural language that are suitable for use in deep learning models.


Lessons Learned from Applying off-the-shelf BERT: There is no Silver Bullet

arXiv.org Artificial Intelligence

One of the challenges in the NLP field is training large classification models, a task that is both difficult and tedious. It is even harder when GPU hardware is unavailable. The increased availability of pre-trained and off-the-shelf word embeddings, models, and modules aim at easing the process of training large models and achieving a competitive performance. We explore the use of off-the-shelf BERT models and share the results of our experiments and compare their results to those of LSTM networks and more simple baselines. We show that the complexity and computational cost of BERT is not a guarantee for enhanced predictive performance in the classification tasks at hand.